home *** CD-ROM | disk | FTP | other *** search
- unit Linkdlg;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls;
-
- type
- TLinkBtnBottomDlg = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- HelpBtn: TBitBtn;
- Bevel1: TBevel;
- ComboBox2: TComboBox;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- TableListBox: TListBox;
- procedure FormActivate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- LinkBtnBottomDlg: TLinkBtnBottomDlg;
-
- implementation
-
- {$R *.DFM}
- {procedure set_link(var source : tdbCheckBox; tablestr, fieldstr : string);
- begin with LinkBtnBottomDlg do begin
- label1.caption := 'Link Field "'+fieldstr+'" of table "'+tablestr+'" to the following:';
- if showModal = mrOK
- then begin
- source.lines.assign(memo1.lines);
- hide;
- end;
- end;}
-
- procedure TLinkBtnBottomDlg.FormActivate(Sender: TObject);
- begin
- { TableListBox.items := main.m_tableList.items;}
- end;
-
- end.
-